#home-container {
    position: relative;
}

.home-main-header {
    color: var(--accent); /* replaces hardcoded #D35100 */
    font-size: 100px;
    margin-left: 100px;
    font-weight: 800;
    width: 50%;
    letter-spacing: -0.02em;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.home-sub-header {
    color: var(--ink-strong);
    font-size: 22px;
    margin-left: 100px;
    width: 50%;
    opacity: 0.9;
    line-height: 1.5;
}

.home-button {
    margin-left: 100px;
    width: 30%;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 9999px;
    color: #fff;
    background: linear-gradient(
            180deg,
            var(--accent) 0%,
            var(--accent-2) 65%,
            #cf4c00 100%
    );
    box-shadow: 0 14px 34px rgba(211, 81, 0, 0.3);
    cursor: pointer;
    transition: transform 0.06s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.home-button:hover {
    transform: scale(1.05);
    filter: brightness(1.06);
    box-shadow: 0 16px 36px rgba(211, 81, 0, 0.36);
    color: #fff; /* stays white for better contrast */
}